home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / pause3.arc / PAUSE3.DOC < prev   
Text File  |  1987-03-05  |  2KB  |  68 lines

  1. _______________________________________________________________________________
  2.  
  3.                  PAUSE3.COM
  4.  
  5.          A subcommand (to be used in batch files,
  6.          especially when ECHO is off)
  7.  
  8.  
  9.      This program is an improved version of DOS's PAUSE command. The
  10.      problems with DOS's PAUSE command are that, when ECHO is off,
  11.      it only displays one message ("Strike a key when ready . . ."),
  12.      and it doesn't alert the user when it appears. This program allows
  13.      users to display any message they want, which could include beeps.
  14.  
  15. -------------------------------------------------------------------------------
  16.  
  17.  
  18.      Purpose:   Suspends system processing, displays a message, and
  19.             waits for the user to press a character key.
  20.  
  21.      Format:    PAUSE3 [remark]
  22.  
  23.       Type:       Internal    External
  24.                   ***
  25.  
  26.      Remarks:   The remark in the PAUSE3 command is optional; it may
  27.                    be left out.  If it is left out, the remark will be a
  28.                    standard "Press a key when ready .  .  ."  Unlike DOS's
  29.                    PAUSE command, PAUSE3 uses the remark as the message that it
  30.                    will display.  Beeps can be put in the remark by holding
  31.                    down <Ctrl> and pressing the 'G' key.  On screen, you should
  32.                    see ^G.  When the message is redisplayed, a beep will
  33.                    replace ^G.  NOTE:  You cannot use the characters '>','|',
  34.                    and '<' in a remark.  This is because they are DOS
  35.                    redirection symbols.
  36.  
  37.      Examples:  Here is an example of DOS's PAUSE command:
  38.  
  39.                  A>PAUSE This is DOS's PAUSE.
  40.              Strike a key when ready . . .
  41.  
  42.             Here is the same example, but in a batch file which
  43.             has had a previous ECHO OFF instruction:
  44.  
  45.              Strike a key when ready . . .
  46.  
  47.             Here is an example of PAUSE3:
  48.  
  49.              A>PAUSE3 This is PAUSE3. Press a key ==}
  50.              This is PAUSE3. Press a key ==}
  51.  
  52.             Here is the same example, but in a batch file which
  53.             has had a previous ECHO OFF instruction:
  54.  
  55.                         This is PAUSE3. Press a key ==}
  56.  
  57.                 Here is a PAUSE3 example with beeping in it:
  58.  
  59.              A>PAUSE3 You're all done! Press a key --^G^G^G
  60.              You're all done! Press a key -- [beep beep beep]
  61.  
  62.  
  63.      SEND ALL QUESTIONS AND COMMENTS TO:
  64.      Scott Pakin
  65.      6007 N. Sheridan Rd.
  66.      Chicago, IL    60660
  67. _______________________________________________________________________________
  68.